Shared Library code for all Wonster products. Requires Common for this library to work.
Here is how to use this library:

----------
SETUP: To setup the library for convent editing using the simulator:
1) delete the SVN Extenal
2) Create a softlink named "wonsterlib" from your Wonster project. Also, create ones for Common, and any other libraries you need.It's important you use the correct name.

    cd SVN/WonsterWords/trunk
    ln -s ../../WonsterLib/trunk ./wonsterlib

----------
CODE:

To access the Library (including images and sound files) in the code, this is how you do it. 

	local fooBar = require("wonsterlib.FooBar");

	fooBar.test();
	local img = display.newImageRect( "wonsterlib/images/Btn_NewVersion.png", 90, 90);
	local snd = audio.loadSound( "wonsterlib/audio/SFX_BoxExploding.mp3" );





